home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2003-274.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  82 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12420);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CAN-2003-0720", "CAN-2003-0721");
  13.  
  14.  name["english"] = "RHSA-2003-274: pine";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated Pine packages that resolve remotely exploitable security issues are
  21.   now available.
  22.  
  23.   Pine, developed at the University of Washington, is a tool for reading,
  24.   sending, and managing electronic messages (including mail and news).
  25.  
  26.   A buffer overflow exists in the way unpatched versions of Pine prior to
  27.   4.57 handle the \'message/external-body\' type. The Common Vulnerabilities
  28.   and Exposures project (cve.mitre.org) has assigned the name CAN-2003-0720
  29.   to this issue.
  30.  
  31.   An integer overflow exists in the Pine MIME header parsing in versions
  32.   prior to 4.57. The Common Vulnerabilities and Exposures project
  33.   (cve.mitre.org) has assigned the name CAN-2003-0721 to this issue.
  34.  
  35.   Both of these flaws could be exploited by a remote attacker sending a
  36.   carefully crafted email to the victim that will execute arbitrary code when
  37.   the email is opened using Pine.
  38.  
  39.   All users of Pine are advised to upgrade to these erratum packages, which
  40.   contain a backported security patch correcting these issues.
  41.  
  42.   Red Hat would like to thank iDefense for bringing these issues to our
  43.   attention and the University of Washington for the patch.
  44.  
  45.  
  46.  
  47.  
  48. Solution : http://rhn.redhat.com/errata/RHSA-2003-274.html
  49. Risk factor : High';
  50.  
  51.  script_description(english:desc["english"]);
  52.  
  53.  summary["english"] = "Check for the version of the pine packages";
  54.  script_summary(english:summary["english"]);
  55.  
  56.  script_category(ACT_GATHER_INFO);
  57.  
  58.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  59.  family["english"] = "Red Hat Local Security Checks";
  60.  script_family(english:family["english"]);
  61.  
  62.  script_dependencies("ssh_get_info.nasl");
  63.  
  64.  script_require_keys("Host/RedHat/rpm-list");
  65.  exit(0);
  66. }
  67.  
  68. include("rpm.inc");
  69. if ( rpm_check( reference:"pine-4.44-19.21AS.0", release:"RHEL2.1") )
  70. {
  71.  security_hole(0);
  72.  exit(0);
  73. }
  74.  
  75. if ( rpm_exists(rpm:"pine-", release:"RHEL2.1") )
  76. {
  77.  set_kb_item(name:"CAN-2003-0720", value:TRUE);
  78.  set_kb_item(name:"CAN-2003-0721", value:TRUE);
  79. }
  80.  
  81. set_kb_item(name:"RHSA-2003-274", value:TRUE);
  82.